1dc760609a8ee7ee5e7c050e931e7280092f1b6b,findbugs/src/java/edu/umd/cs/findbugs/detect/LoadOfKnownNullValue.java,LoadOfKnownNullValue,analyzeMethod,#ClassContext#Method#,54
Before Change
for (Iterator<Location> i = cfg.locationIterator(); i.hasNext();) {
Location location = i.next();
Instruction ins = location.getHandle().getInstruction();
if (!(ins instanceof ALOAD))
continue;
ALOAD load = (ALOAD) ins;
After Change
for (Iterator<Location> i = cfg.locationIterator(); i.hasNext();) {
Location location = i.next();
InstructionHandle handle = location.getHandle();
Instruction ins = handle.getInstruction();
if (!(ins instanceof ALOAD))
continue;
ALOAD load = (ALOAD) ins;